4 examples for git flow

{{ score }}
  # To initialize a new repo with the basic branch structure
git flow init
        
{{ score }}
  # To list/start/finish feature branches, use:
git flow feature
git flow feature start  []
git flow feature finish 
        
{{ score }}
  # To list/start/finish release branches, use:
git flow release
git flow release start  []
git flow release finish 

# For release branches, the  arg must be a commit on develop.
        
{{ score }}
  # To push/pull a feature branch to the remote repository, use:
git flow feature publish 
git flow feature pull